/* Notification Modal Overlay */
.notification-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

/* Modal Content Box */
.notification-modal-content {
    background: transparent;
    width: 900px;
    height: 570px;
    display: flex;
    gap: 0;
}

/* Sidebar Styling */
.notification-modal-content .account-sidebar {
    width: 200px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    border-radius: 12px 0 12px 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Right Column */
.notification-modal-content .account-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Card */
.notification-modal-content .account-header-card {
    background: linear-gradient(90deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 16px 40px 16px 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    box-shadow: 8px 4px 24px rgba(0, 0, 0, 0.06);
}

/* Main Panel */
.notification-panel {
    flex: 1;
    padding: 32px 40px;
    margin-left: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.notification-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 32px;
    margin-top: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a1a1a;
    display: inline-block;
    letter-spacing: 0.5px;
}

.notification-list {
    flex: 1;
    overflow-y: auto;
}

/* Scrollbar styling */
.notification-list::-webkit-scrollbar {
    width: 4px;
}

.notification-list::-webkit-scrollbar-track {
    background: transparent;
}

.notification-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d0d0d0 0%, #bbb 100%);
    border-radius: 4px;
}

.notification-item {
    margin-bottom: 24px;
    padding: 16px 20px;
    background: linear-gradient(90deg, #fafafa 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.notification-item:hover {
    border-color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.notification-item.unread {
    border-left: 3px solid #1a1a1a;
    background: linear-gradient(90deg, #f8f8f8 0%, #ffffff 100%);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.notification-type {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-time {
    font-size: 12px;
    color: #999;
}

.notification-content {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.notification-underline {
    display: none;
}

/* Empty State */
.empty-notifications {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: #999;
}

.empty-notifications-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-notifications-text {
    font-size: 14px;
    color: #999;
}

/* Notification Badge */
.notification-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 9px;
    margin-left: 8px;
}

/* Action Link */
.notification-action {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.notification-action:hover {
    color: #333;
}
